08. Windows: Hello Java!
Windows: Hello Java!
INSTRUCTOR NOTE:
NOTE for earlier versions of Windows: Use the dir command instead of cd to change directories.
// Java code for printing Hello world!
public class HelloWorld {
public static void main(String[] args) {
//write code in here that you want to execute
System.out.println("Hello world!");
}
}